home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-09-19 | 410 b | 23 lines | [TEXT/MPS ] |
- /*
- * extcall.r
- */
- #if !COMPILER
- #ifdef ExternalFunctions
-
- /*
- * extcall - stub procedure for external call interface.
- */
- dptr extcall(dargv, argc, ip)
- dptr dargv;
- int argc;
- int *ip;
- {
- *ip = 216; /* no external function to find */
- return (dptr)NULL;
- }
-
- #else /* ExternalFunctions */
- static char x; /* prevent empty module */
- #endif /* ExternalFunctions */
- #endif /* !COMPILER */
-